home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
lib
/
mntlib44.zoo
/
mntlib
/
findfile.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-01-16
|
305b
|
14 lines
#include <compiler.h>
#include <limits.h> /* needed for PATH_MAX */
#include <support.h>
char *
findfile(fname, fpath, fext)
const char *fname, *fpath;
char *const *fext;
{
/* simply calls _buffindfile */
static char try[PATH_MAX];
return _buffindfile(fname,fpath,fext,try);
}